home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl720 / psk130.lzh / PRINT.H < prev    next >
C/C++ Source or Header  |  1992-11-10  |  557b  |  36 lines

  1. /*
  2.     print.H
  3.  
  4.     Printer Interface Header File
  5.  
  6.     Copyright (C) 1992, Geoff Friesen B.Sc.
  7.     All rights reserved.
  8.  
  9.     Borland C++ 3.1
  10. */
  11.  
  12. #define    LPT1    0
  13. #define    LPT2    1
  14. #define    LPT3    2
  15.  
  16. #define    MAXDRV    8
  17.  
  18. #ifdef __cplusplus
  19. extern "C"
  20. {
  21. #endif
  22.  
  23. int    p_char        (int c);
  24. int    p_eject        (void);
  25. void    p_init        (int _port, int _lpp);
  26. int    p_lc        (void);
  27. int    p_loaddrv    (char *_filespec);
  28. void    p_sc        (int _lp);
  29. int    p_scandrv    (char **drivers);
  30. int    p_stat        (void);
  31. int    p_str        (char *str);
  32. int    p_xchar        (int c, int count);
  33.  
  34. #ifdef __cplusplus
  35. }
  36. #endif